home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / util / libs / ttrender.lha / ttrender-3.1 / Examples / OpenFontTest / makefile next >
Makefile  |  2002-05-27  |  253b  |  12 lines

  1. CF = -c -O2 -msmall-code -fbaserel -m68020
  2.  
  3. oftest: oftest.o startup.o
  4.     gcc -s -o oftest -nostartfiles -noixemul -msmall-code -fbaserel -m68020 startup.o oftest.o
  5.  
  6. oftest.o: oftest.c
  7.     gcc $(CF) $<
  8.  
  9. startup.o: startup.c
  10.     gcc $(CF) -fwritable-strings $<
  11.  
  12.